        :root {
            --ink: #111417;
            --muted: #5a6572;
            --sand: #f7f2eb;
            --brand: #0f6e6b;
            --brand-dark: #0b4f4d;
            --accent: #f1a233;
            --accent-dark: #c77a16;
            --card: #ffffff;
            --stroke: rgba(17, 20, 23, 0.12);
            --shadow: 0 20px 60px rgba(15, 30, 30, 0.18);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "Space Grotesk", "Segoe UI", sans-serif;
            color: var(--ink);
            background: linear-gradient(120deg, #f7f2eb 0%, #f0efe7 55%, #e9f4f4 100%);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: min(1200px, 92vw);
            margin: 0 auto;
        }

        .nav {
            position: sticky;
            top: 0;
            backdrop-filter: blur(10px);
            background: rgba(247, 242, 235, 0.8);
            border-bottom: 1px solid var(--stroke);
            z-index: 10;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            background: radial-gradient(circle at 30% 30%, #ffffff, #d7efe8 45%, #0f6e6b 100%);
            box-shadow: inset 0 0 0 1px rgba(15, 110, 107, 0.2);
        }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
            font-weight: 500;
            color: var(--muted);
        }

        .nav-links a:hover {
            color: var(--ink);
        }

        .nav-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn {
            padding: 12px 18px;
            border-radius: 999px;
            border: 1px solid transparent;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .btn-primary {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 10px 30px rgba(15, 110, 107, 0.3);
        }

        .btn-primary:hover {
            background: var(--brand-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            border-color: var(--stroke);
            color: var(--ink);
            background: #fff;
        }

        .hero {
            position: relative;
            padding: 18px 0 16px;
            overflow: hidden;
        }

        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
        }

        .hero::before {
            width: 520px;
            height: 520px;
            background: radial-gradient(circle, rgba(241, 162, 51, 0.35), transparent 70%);
            right: -150px;
            top: -120px;
        }

        .hero::after {
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(15, 110, 107, 0.35), transparent 70%);
            left: -180px;
            bottom: -120px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 36px;
            align-items: start;
        }

        .hero-title {
            font-family: "Fraunces", "Times New Roman", serif;
            font-size: clamp(2.5rem, 3vw + 1.4rem, 4.2rem);
            line-height: 1.05;
            margin: 0 0 18px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 520px;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 26px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 28px;
        }

        .stat {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--stroke);
            padding: 18px;
            border-radius: 16px;
        }

        .stat strong {
            display: block;
            font-size: 1.4rem;
        }

        .hero-panel {
            background: var(--card);
            border-radius: 24px;
            padding: 28px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(15, 110, 107, 0.2);
        }

        .panel-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .badge {
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(15, 110, 107, 0.12);
            color: var(--brand-dark);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .panel-list {
            display: grid;
            gap: 14px;
        }

        .panel-item {
            display: flex;
            justify-content: space-between;
            padding: 14px 16px;
            border-radius: 14px;
            background: #f8fbfb;
            border: 1px solid rgba(15, 110, 107, 0.12);
        }

        .section {
            padding: 80px 0;
            background: transparent;
        }

        .section-tight {
            padding-top: 32px;
        }

        .section-tight-90 {
            padding-top: 8px;
        }

        .section-tight-bottom-80 {
            padding-bottom: 16px;
        }

        .section-tight-top-80 {
            padding-top: 16px;
        }

        .section-title {
            font-family: "Fraunces", "Times New Roman", serif;
            font-size: clamp(2rem, 1vw + 1.8rem, 3rem);
            margin: 0 0 16px;
        }

        .section-subtitle {
            color: var(--muted);
            max-width: 620px;
        }

        .section-subtitle-full {
            max-width: none;
        }

        .about-section {
            background: var(--card);
        }

        .about-wrap {
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid var(--stroke);
            border-radius: 28px;
            padding: 32px;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 20px;
            margin-top: 32px;
        }

        .card {
            background: var(--card);
            padding: 22px;
            border-radius: 18px;
            border: 1px solid var(--stroke);
            box-shadow: 0 10px 30px rgba(17, 20, 23, 0.08);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 36px;
        }

        .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-dark);
        }

        .price small {
            font-size: 0.9rem;
            color: var(--muted);
        }

        .pill {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(241, 162, 51, 0.2);
            color: var(--accent-dark);
            font-weight: 600;
            font-size: 0.8rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 26px;
            margin-top: 28px;
        }

        .contact-card {
            padding: 22px;
            background: #fff;
            border-radius: 18px;
            border: 1px solid var(--stroke);
        }

        .contact-card input,
        .contact-card textarea {
            width: 100%;
            border-radius: 12px;
            border: 1px solid var(--stroke);
            padding: 10px 12px;
            margin-top: 10px;
            font-family: inherit;
        }

        .contact-card textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-status {
            margin-top: 12px;
            font-weight: 600;
        }

        .footer {
            padding: 6px 0 10px;
            color: var(--muted);
            text-align: center;
        }

        .reveal {
            opacity: 0;
            transform: translateY(18px);
            animation: fadeUp 0.8s ease forwards;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 760px) {
            .nav-links {
                display: none;
            }

            .hero-actions {
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }